home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / RCS / ar.h,v < prev    next >
Encoding:
Text File  |  1988-07-11  |  649 b   |  47 lines

  1. head     1.1;
  2. access   ;
  3. symbols  ;
  4. locks    ; strict;
  5. comment  @ * @;
  6.  
  7.  
  8. 1.1
  9. date     88.07.11.09.46.29;  author ouster;  state Exp;
  10. branches ;
  11. next     ;
  12.  
  13.  
  14. desc
  15. @@
  16.  
  17.  
  18.  
  19. 1.1
  20. log
  21. @Initial revision
  22. @
  23. text
  24. @/*
  25.  * Copyright (c) 1980 Regents of the University of California.
  26.  * All rights reserved.  The Berkeley software License Agreement
  27.  * specifies the terms and conditions for redistribution.
  28.  *
  29.  *    @@(#)ar.h    5.1 (Berkeley) 5/30/85
  30.  */
  31.  
  32. #define    ARMAG    "!<arch>\n"
  33. #define    SARMAG    8
  34.  
  35. #define    ARFMAG    "`\n"
  36.  
  37. struct ar_hdr {
  38.     char    ar_name[16];
  39.     char    ar_date[12];
  40.     char    ar_uid[6];
  41.     char    ar_gid[6];
  42.     char    ar_mode[8];
  43.     char    ar_size[10];
  44.     char    ar_fmag[2];
  45. };
  46. @
  47.